projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6ab040
)
(dired-move-to-filename): Fix previous change.
author
Markus Rost
<rost@math.uni-bielefeld.de>
Sun, 15 Sep 2002 16:34:34 +0000
(16:34 +0000)
committer
Markus Rost
<rost@math.uni-bielefeld.de>
Sun, 15 Sep 2002 16:34:34 +0000
(16:34 +0000)
lisp/dired.el
patch
|
blob
|
history
diff --git
a/lisp/dired.el
b/lisp/dired.el
index f0306d32d7a11cac58066002a512ba68014dfa10..43941bc17aa14c81877141d063f6baeb81fb57cc 100644
(file)
--- a/
lisp/dired.el
+++ b/
lisp/dired.el
@@
-1589,7
+1589,8
@@
regardless of the language.")
;; First try assuming `ls --dired' was used.
(let ((change (next-single-property-change (point) 'dired-filename
nil eol)))
- (if change (goto-char change)
+ (if (and change (< change eol))
+ (goto-char change)
(if (re-search-forward dired-move-to-filename-regexp eol t)
(goto-char (match-end 0))
(if raise-error